Test Failed
Push — master ( 41e89b...cfe199 )
by ANTHONIUS
04:45 queued 12s
created

index.tsx ➔ Index   A

Complexity

Conditions 1

Size

Total Lines 11
Code Lines 11

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 11
c 0
b 0
f 0
dl 0
loc 11
rs 9.85
1
import React from 'react';
2
import Container from '@material-ui/core/Container';
3
import Typography from '@material-ui/core/Typography';
4
import Box from '@material-ui/core/Box';
5
import ProTip from '../src/ProTip';
6
7
export default function Index() {
8
  return (
9
    <Container maxWidth="sm">
10
      <Box my={4}>
11
        <Typography variant="h4" component="h1" gutterBottom>
12
          Next.js with TypeScript example
13
        </Typography>
14
        <ProTip />
15
      </Box>
16
    </Container>
17
  );
18
}
19